home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / util / cli / BinDiff11.lha / BinDiff.doc next >
Encoding:
Text File  |  1995-01-27  |  1.7 KB  |  67 lines

  1. BinDiff/--background--                                 BinDiff/--background--
  2.  
  3.    NAME
  4.  
  5.        BinDiff v1.1
  6.  
  7.    DESCRIPTION
  8.  
  9.        Compare two binary files in chunks of 8 bytes, dumping all
  10.        differing chunks. Differing bytes are marked. Line format is:
  11.  
  12.        offset:  file1-hex file1-chars  |  file2-hex file2-chars
  13.  
  14.        If BinDiff finds any differences it sets WARN (5) as the DOS
  15.        error code, else OK (0). BinDiff is pure of heart and can
  16.        therefore be made resident.
  17.  
  18.    SYNOPSIS
  19.  
  20.        BinDiff FILE1/A,FILE2/A,HEX/S,ALL/S,QUIET/S
  21.  
  22.    OPTIONS
  23.  
  24.        FILE1, FILE2 - the two files to be compared
  25.        HEX - offsets are printed in hex not decimal
  26.        ALL - dump all, not only differing chunks
  27.        QUIET - all output is omitted
  28.  
  29.    COMPILING
  30.  
  31.        This program was written in Oberon-2 with Amiga Oberon extensions.
  32.        Compile and link it under Amiga Oberon v3.00 with
  33.  
  34.          oberon -amd BinDiff
  35.          olink -amd BinDiff
  36.  
  37.        To extract this documentation use Autodoc 2.7 by hartmut Goebel:
  38.  
  39.          autodoc -a -f BinDiff.mod > BinDiff.doc
  40.  
  41.    AUTHOR
  42.  
  43.        Jan Hense
  44.        Lothringerstr. 9/Rgb.
  45.        81667 München, Germany
  46.        Tel. +49-89-4807104
  47.        e-mail j.hense@amc.insider.sub.de
  48.  
  49.    COPYRIGHT
  50.  
  51.        Copyright reserved by the author. Freely distributable.
  52.  
  53. BinDiff/--history--                                       BinDiff/--history--
  54.  
  55.    v1.1 (27.01.95) [juh]
  56.  
  57.        bug: forgot Dos.FreeArgs()
  58.        slight changes in output format
  59.        new option: QUIET/S
  60.        added COMPILING in --background--
  61.        now sets WARN as DOS error code if any diffs were found
  62.  
  63.    v1.0 (07.01.95) [juh]
  64.  
  65.        Created initial version.
  66.  
  67.